home *** CD-ROM | disk | FTP | other *** search
Text File | 1988-11-29 | 964 b | 37 lines | [TEXT/PJMM] |
- {cdevIntf}
- {Chris Reed}
- {88/11/29}
-
- UNIT cdevIntf;
-
- INTERFACE
-
- CONST
-
- { messages }
-
- initDev = 0; {initialization}
- hitDev = 1; {user clicked on dialog item}
- closeDev = 2; {user selected another cdev or CP closed}
- nulDev = 3; {desk accesory run}
- updateDev = 4; {update event}
- activDev = 5; {activate event}
- deActivDev = 6; {deactivate event}
- keyEvtDev = 7; {key down or autokey event}
- macDev = 8; {check machine characteristics}
- undoDev = 9; {standard Edit menu undo}
- cutDev = 10; {standard Edit menu cut}
- copyDev = 11; {standard Edit menu copy}
- pasteDev = 12; {standard Edit menu paste}
- clearDev = 13; {standard Edit menu clear}
- cursorDev = 14; {cursor in cdev area}
-
- { Special cdevValue values }
-
- cdevGenErr = -1; {general error; gray w/o alert}
- cdevMemErr = 0; {memory shortfall; alert user please}
- cdevResErr = 1; {couldn't get a needed resource; alert}
- cdevUnset = 3; {cdevValue is initalized to this}
-
- IMPLEMENTATION
- END.